home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _0C056F712E024FE5A8F8D74F327DDFDD < prev    next >
Encoding:
Text File  |  2006-08-04  |  509 b   |  23 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Erich Tran',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_ColorAdjustThreshold():
  13.     return {
  14.         'Threshold': {
  15.             'Threshold': 79
  16.             }
  17.         }
  18.  
  19. def Do(Environment):
  20.     # Color Adjust Threshold
  21.     App.Do( Environment, 'ColorAdjustThreshold',         Preset_ColorAdjustThreshold())
  22.  
  23.